home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 14
/
CU Amiga Magazine's Super CD-ROM 14 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-09].iso
/
CUCD
/
WWW
/
http
/
www.wirenet.co.uk
/
files
/
thor24_arexx.lha
/
FSE
/
Unquote.fse
< prev
Wrap
Text File
|
1996-11-11
|
504b
|
29 lines
/* unqoute.fse - reduce the layer of qoute chars (">") in a block of text
** to just one level.
*/
options results
YPOS
currline = result
XPOS
currcolumn = result
MSGLENGTH
lastline = result
do i=currline to lastline
SETPOS 1 i
GETLINE
line = result
if(line ~= "") then do
DELETELINES
NEWLINE
SETPOS 1 i
INSERTINPUT ">"||strip(line, L, ">")
end
else break
end
SETPOS currcolumn currline